home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000125_news@columbia.edu _Thu May 23 10:08:47 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA05487 for <kermit.misc@watsun>; Thu, 23 May 1996 10:08:46 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id KAA21676 for kermit.misc@watsun; Thu, 23 May 1996 10:08:44 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Best efficiency ?
  8. Date: 23 May 1996 14:08:39 GMT
  9. Organization: Columbia University
  10. Lines: 47
  11. Message-ID: <4o1rh7$l5a@apakabar.cc.columbia.edu>
  12. References: <4o08gj$d5u@ns2.ryerson.ca>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4o08gj$d5u@ns2.ryerson.ca>,
  16. John Verne - CNED/F94 <jverne@acs.ryerson.ca> wrote:
  17. : I was just wondering what % some folk's are getting with big binary file 
  18. : transfers in PC-Kermit to C-Kermit.  I seem to get a max of "11%" no 
  19. : matter what I do with the control-prefixing, block length, etc.
  20. 11% of what?  When Kermit prints its percent efficiency figure, it is based
  21. upon its idea of the connection speed.  The efficiency is how long the
  22. transfer took, compared to how long it should have taken to move that many
  23. file bytes at the given speed.
  24.  
  25. Unfortunately, more often than not, the underlying operating does not know
  26. the speed.  For example, if you have a Telnet and/or terminal-server
  27. connection into UNIX, it (usually) thinks your speed is 38400, no matter
  28. what your speed really is.  So even if you are dialing in with 1200 bps
  29. modem, it is calculating the efficiency based on 38400 bps.
  30.  
  31. Secondly, even when it *does* know the speed of a serial connection, that's
  32. the *interface* speed, not the modulation speed.  For example, on a V.32bis
  33. connection, your interface speed might be 57600 bps, but the modulation speed
  34. is 14400 bps.  And to complicate matters further, the actual throughput over
  35. the modem might be lower (because of error correction) or higher (because of
  36. data compression).
  37.  
  38. And to confuse matters even more, V.34 modems can "speed-shift" up or down
  39. at any time during the connection, while the interface speed remains constant.
  40.  
  41. So take the "percent efficiency" figure with a grain of salt and look at the
  42. actual throughput in cps (characters per second).
  43.  
  44. Kermit's TRUE efficiency can vary from a few percent to many hundreds of
  45. percent, depending on the data itself, the quality of the connection in
  46. terms of noise and delay, whether the connection is 7 bits or 8 bits, and
  47. your packet-length, window size, and control-character unprefixing settings.
  48. It is typical to get 85-100% percent true efficiency if you take the trouble
  49. to select a longer-than-default packet length and a window size greater than
  50. one.
  51.  
  52. : Anybody got a secret pointer?
  53. It's no secret -- it's in all the Kermit books, and it's the top item on
  54. our FAQ:
  55.  
  56.   http://www.columbia.edu/kermit/faq.html
  57.   ftp://kermit.columbia.edu/kermit/faq.txt
  58.  
  59. - Frank